home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / graphic / gle33b_1.zip / GLE4.ZIP / FILL.GLE < prev    next >
Text File  |  1992-03-25  |  371b  |  17 lines

  1. size 24 18 box ! Note: Filling doesn't work on the screen.
  2. ! To see this example use:
  3. ! dvigle fill
  4. ! dviprint -dvt
  5. begin graph
  6.     SIZE 24 18
  7.     Title "Example of filling"
  8.     xtitle "TRYPSIN activity"
  9.     ytitle "weight gain"
  10.     data test.dat
  11.     d1 marker square
  12.     d2 marker triangle
  13.     fill x1,d1 color grey90
  14.     fill d1,d2 color grey50
  15.     fill d2,x2 color grey10
  16. end graph
  17.